From: Keir Fraser Date: Wed, 19 Aug 2009 11:54:43 +0000 (+0100) Subject: x86: Only allocate vpid for initialised vcpus. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13467 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=9e212a4e9ab44870265027c9feb96cb72c80347c;p=xen.git x86: Only allocate vpid for initialised vcpus. Currently, 32 vpids are allocated for each domain statically, it blocks to support more vcpus for HVM domain, so remove the limit and only allocate vpid for intilized vcpus. In this way, vpid can be non-contiguous for vcpus of one single domain. Signed-off-by: Xiantao Zhang --- diff --git a/xen/arch/x86/hvm/vmx/vmcs.c b/xen/arch/x86/hvm/vmx/vmcs.c index e9daac5ecc..7d3ea0b1aa 100644 --- a/xen/arch/x86/hvm/vmx/vmcs.c +++ b/xen/arch/x86/hvm/vmx/vmcs.c @@ -732,11 +732,7 @@ static int construct_vmcs(struct vcpu *v) } if ( cpu_has_vmx_vpid ) - { - v->arch.hvm_vmx.vpid = - v->domain->arch.hvm_domain.vmx.vpid_base + v->vcpu_id; __vmwrite(VIRTUAL_PROCESSOR_ID, v->arch.hvm_vmx.vpid); - } if ( cpu_has_vmx_pat && paging_mode_hap(d) ) { diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c index ad8d258222..cc2f17fcfb 100644 --- a/xen/arch/x86/hvm/vmx/vmx.c +++ b/xen/arch/x86/hvm/vmx/vmx.c @@ -59,8 +59,8 @@ static void vmx_ctxt_switch_to(struct vcpu *v); static int vmx_alloc_vlapic_mapping(struct domain *d); static void vmx_free_vlapic_mapping(struct domain *d); -static int vmx_alloc_vpid(struct domain *d); -static void vmx_free_vpid(struct domain *d); +static int vmx_alloc_vpid(struct vcpu *v); +static void vmx_free_vpid(struct vcpu *v); static void vmx_install_vlapic_mapping(struct vcpu *v); static void vmx_update_guest_cr(struct vcpu *v, unsigned int cr); static void vmx_update_guest_efer(struct vcpu *v); @@ -82,14 +82,9 @@ static int vmx_domain_initialise(struct domain *d) d->arch.hvm_domain.vmx.ept_control.asr = pagetable_get_pfn(d->arch.phys_table); - if ( (rc = vmx_alloc_vpid(d)) != 0 ) - return rc; if ( (rc = vmx_alloc_vlapic_mapping(d)) != 0 ) - { - vmx_free_vpid(d); return rc; - } return 0; } @@ -98,7 +93,6 @@ static void vmx_domain_destroy(struct domain *d) { ept_sync_domain(d); vmx_free_vlapic_mapping(d); - vmx_free_vpid(d); } static int vmx_vcpu_initialise(struct vcpu *v) @@ -107,6 +101,9 @@ static int vmx_vcpu_initialise(struct vcpu *v) spin_lock_init(&v->arch.hvm_vmx.vmcs_lock); + if ( (rc = vmx_alloc_vpid(v)) != 0 ) + return rc; + v->arch.schedule_tail = vmx_do_resume; v->arch.ctxt_switch_from = vmx_ctxt_switch_from; v->arch.ctxt_switch_to = vmx_ctxt_switch_to; @@ -116,6 +113,7 @@ static int vmx_vcpu_initialise(struct vcpu *v) dprintk(XENLOG_WARNING, "Failed to create VMCS for vcpu %d: err=%d.\n", v->vcpu_id, rc); + vmx_free_vpid(v); return rc; } @@ -135,6 +133,7 @@ static void vmx_vcpu_destroy(struct vcpu *v) vmx_destroy_vmcs(v); vpmu_destroy(v); passive_domain_destroy(v); + vmx_free_vpid(v); } #ifdef __x86_64__ @@ -1396,7 +1395,7 @@ static struct hvm_function_table vmx_function_table = { }; static unsigned long *vpid_bitmap; -#define VPID_BITMAP_SIZE ((1u << VMCS_VPID_WIDTH) / XEN_LEGACY_MAX_VCPUS) +#define VPID_BITMAP_SIZE (1u << VMCS_VPID_WIDTH) void start_vmx(void) { @@ -1902,7 +1901,7 @@ static void vmx_free_vlapic_mapping(struct domain *d) free_xenheap_page(mfn_to_virt(mfn)); } -static int vmx_alloc_vpid(struct domain *d) +static int vmx_alloc_vpid(struct vcpu *v) { int idx; @@ -1919,17 +1918,17 @@ static int vmx_alloc_vpid(struct domain *d) } while ( test_and_set_bit(idx, vpid_bitmap) ); - d->arch.hvm_domain.vmx.vpid_base = idx * XEN_LEGACY_MAX_VCPUS; + v->arch.hvm_vmx.vpid = idx; return 0; } -static void vmx_free_vpid(struct domain *d) +static void vmx_free_vpid(struct vcpu *v) { if ( !cpu_has_vmx_vpid ) return; - clear_bit(d->arch.hvm_domain.vmx.vpid_base / XEN_LEGACY_MAX_VCPUS, - vpid_bitmap); + if ( v->arch.hvm_vmx.vpid ) + clear_bit(v->arch.hvm_vmx.vpid, vpid_bitmap); } static void vmx_install_vlapic_mapping(struct vcpu *v) diff --git a/xen/include/asm-x86/hvm/vmx/vmcs.h b/xen/include/asm-x86/hvm/vmx/vmcs.h index 1f8e665d19..6695e03c04 100644 --- a/xen/include/asm-x86/hvm/vmx/vmcs.h +++ b/xen/include/asm-x86/hvm/vmx/vmcs.h @@ -58,7 +58,6 @@ struct vmx_msr_state { struct vmx_domain { unsigned long apic_access_mfn; - unsigned long vpid_base; union { struct { u64 etmt :3,